split method in java

117

split method in java -

public class SplitExample2 { 
    public static void main(String args[]) 
    { 
        String str = "My name is Chaitanya";
        //regular expression is a whitespace here 
        String[] arr = str.split(" "); 
  
        for (String s : arr) 
            System.out.println(s); 
    } 
}

string split java -

String[] parts = string.split(Pattern.quote(".")); // Split on period.

Comments

Submit
0 Comments